home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 2.0 KB | 93 lines | [TEXT/ScoM] |
- ; Study in rhythmic construction #7a
-
- (setq mel1
- (symbol-transform
- from '(a b c d)
- to '(e f g h)
- order '(0 3 2 1)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel2
- (symbol-transform
- from '(e f g h)
- to '(i j k l)
- order '(3 2 1 0)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel3
- (symbol-transform
- from '(i j k l)
- to '(a b c d)
- order '(2 1 0 3)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel4
- (symbol-transform
- from '(m n o p)
- to '(e f g h)
- order '(1 0 3 2)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (def-neuron make-rhythm1
- (in 1 'a) '1/4
- (in 1 'b) '(1/8 1/8)
- (in 1 'c) '(-1/8 1/8)
- (in 1 'd) '(1/16 1/8 1/16)
- (in 1 'e) '(1/16 1/16 1/16 1/16)
- (in 1 'f) '(1/8 1/16 1/16)
- (in 1 'g) '(1/16 1/16 1/8)
- (in 1 'h) '(-1/8 1/16 1/16)
- (in 1 'i) '(1/16 1/16 -1/8)
- (in 1 'j) '(1/16 1/16 -1/16 1/16)
- (in 1 'k) '(1/16 1/16 1/16 1/16)
- (in 1 'l) '(1/16 -1/16 -1/16 1/16)
- (in 1 'm) '(-1/16 1/16 1/16 -1/16)
- (in 1 'n) '(-1/16 -1/16 -1/16 1/16)
- (in 1 'o) '(-1/16 1/16 -1/16 -1/16)
- (in 1 'p) '(-1/16 1/16 -1/16 1/16)
- (in 1 'q) '(1/8t 1/8t 1/8t)
- (in 1 'r) '(1/4t 1/8t)
- (in 1 's) '(1/8t 1/4t)
- (in 1 't) '(1/16t 1/16t 1/16t 1/16t 1/16t 1/16t)
- (in 1 'u) '(1/4t 1/4t 1/4t)
- (otherwise '(1/32 1/32 1/32 1/32 1/32 1/32 1/32 1/32))
- )
-
- (setq mels (append mel1 mel2 mel3 mel4))
-
- (def-symbol
- bass mels
- drums (filter-extract '(a b c h i) mels)
- )
-
- (def-expression
- default ((legato 80 19 0.7) (humanize 0 2 0.6) (velocity 30 0.5))
- )
-
- (def-length
- bass (run-neuron 'make-rhythm1
- (append mel4 mel3 mel2 mel1))
- drums (run-neuron 'make-rhythm1
- (append mel4 mel3 mel2 mel1))
- )
-
- (setq tonal (activate-tonality (chromatic g 3)))
-
- (compile-song-p "ccl;output:" 1/1 "duo"
- ; BARS |---|---|---|---|---|---|---|---|
- bass tonal "--------------------------------"
- drums mt-32 "------------------------------- "
- )
-